home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / CPP / WCLASS95.ZIP / CMAIN.C < prev    next >
Encoding:
C/C++ Source or Header  |  1995-07-05  |  666 b   |  20 lines

  1. //This sample main program may be used to test ANSI C++ code generation scripts.
  2. //In With Class load ansiCcar.omt.  Run the scripts chead1.sct and cfunc1.sct
  3. //Create a project in your C environment.  Add cmain.cpp,  
  4. //car.c, motor.c, passengr.c, tire.c, and clllrphn.c.
  5. //Comments and suggestions are solicited Richard Felsinger, RCF Associates
  6. //960 Scottland Dr, Mt Pleasant, SC 29464 tele 803-881-3648 71162.755@compuserve.com
  7.  
  8. #include "car.h"
  9.  
  10. int main ()
  11. {
  12.   Car car1;                 
  13.   Car_registerIt(&car1);
  14.   Car_operate(&car1);
  15.   Car_makePhoneCall(&car1);
  16.   Car_inflateTire(&car1);
  17.   Car_checkPassengerSeatBelt(&car1);
  18.   return 0;
  19. }
  20.